From: Philipp Stephani Date: Sun, 7 Jan 2018 15:44:45 +0000 (+0100) Subject: Remove incorrect use of AUTO_STRING X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~19^2~6308 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=73526123f2293f1b83fe51d6e30676f84c95c7b6;p=emacs.git Remove incorrect use of AUTO_STRING * src/lread.c (load_error_old_style_backquotes): Remove incorrect use of AUTO_STRING. --- diff --git a/src/lread.c b/src/lread.c index bcf3b7f55c7..28d4bf9a4fe 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1007,10 +1007,7 @@ static _Noreturn void load_error_old_style_backquotes (void) { if (NILP (Vload_file_name)) - { - AUTO_STRING (message, "Old-style backquotes detected!"); - xsignal1 (Qerror, message); - } + xsignal1 (Qerror, build_string ("Old-style backquotes detected!")); else { AUTO_STRING (format, "Loading `%s': old-style backquotes detected!");